glitter makes SPARQL

glitter, un package R pour explorer et collecter des données du web sémantique

Lise Vaudor, Maëlle Salmon

MeetUp Rladies, 14 novembre 2023

2024-09-06

Projet RECIT

  • Analyste de données dans un labo de géographie (UMR 5600 Environnement Ville Société)

  • Rôle pédagogique: aider les collègues à utiliser R pour leurs analyses/valorisation (blog🔗)

  • Travail d’appui à la recherche ➡ développement d’outils d’analyse, recueil de données du web (API, web-scraping…)

Projet RECIT

  • Intérêt pour les données du web (réseaux sociaux, projet Wikimedia)

  • Découverte du web des données (LOD: Linked Open Data) via les Wikidata

Projet RECIT

Projet émergent ENS: RECIT:

R pour l’Exploration et la Collecte Intégrée de Triplets de données

➡️ 💰 20 000 euros sur 4 ans

Projet RECIT

Stage M2 Camille Scheffler et exploration des Wikidata pour deux cas d’études:

  • Les jumelages en Europe et dans le monde (Camille Scheffler, Ninon Briot, ATER ENS de Lyon)
  • Le lobbyisme aux USA (Camille Scheffler, Florence Nussbaum, MCF ENS de Lyon)

Web sémantique, linked open data, web des données

© Camille Scheffler

Web sémantique et Linked Open Data

💡 Web sémantique Vision du web dans laquelle les données sont structurées et organisées pour être traitables par des machines ➡ lien étroit aux principes FAIR (Findable Accessible Interoperable Reusable)

🧱️ Linked Open Data: Une réalisation concrète de cette vision, consistant en des données interconnectées et accessible sur le web. Web des données

Formalisation des Linked Open Data

© Camille Scheffler exemple: URI correspondant au film “Marius et Jeannette” sur Wikidata

Linked Open Data: : LOD-cloud

🔗

Projet RECIT

En lien (et en parallèle) aux cas d’études de Camille, début du développement du package R glitter en 2021.

Package glitter: objectifs

🎯 Promouvoir l’usage (exploration, recueil, analyse) des données du web sémantique pour les chercheur·se·s et étudiant·e·s usagers de R, en:

  • facilitant l’écriture des requêtes SPARQL
  • facilitant l’envoi des requêtes
  • favoriser l’analyse/valorisation ultérieure dans R

En tant que “Domain Specific Language” (DSL), glitter correspond à une syntaxe et des fonctions plus proches du tidyverse et base R que de SPARQL.

Projet RECIT

2022, 2023: presta de 💪Maëlle Salmon

Projet RECIT

Le projet prend fin: 🎉 {glitter} est prêt à être utilisé!! 🎉

Linked Open Data: difficultés d’appropriation et de collecte

  • 👀 ce qu’on appréhende directement: le web documentaire
  • 💭 difficultés liées à la structure des données en graphes
  • 🔮 métadonnées intégrées aux données
  • 🧠️ transformation en données tabulaires pour analyses
  • ⛏️ difficultés de collecte (SPARQL)

Du graphe de connaissances au tableau de données

Exemple de requête simple

Dans R, sans glitter:

query <- 'SELECT ?film ?filmLabel WHERE {
?film wdt:P31 wd:Q11424. 
SERVICE wikibase:label{bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".} } LIMIT 10'

tib <- WikidataQueryServiceR::query_wikidata(query)
  • 🖊️ Rédaction et envoi de commandes R
  • 🎁 Recueil du tableau de résultats en tant qu’objet R
  • 🎯 Chaîne de traitement reproductible

Dans R, avec glitter:

tib <- spq_init() %>%
  spq_add("?film wdt:P31 wd:Q11424") %>%
  spq_label(film) %>% 
  spq_head(n=10) %>% 
  spq_perform() 
film film_label
http://www.wikidata.org/entity/Q372 We Live in Public
http://www.wikidata.org/entity/Q595 The Intouchables
http://www.wikidata.org/entity/Q593 A Gang Story
http://www.wikidata.org/entity/Q1365 Swept Away
http://www.wikidata.org/entity/Q2201 Kick-Ass
http://www.wikidata.org/entity/Q2345 12 Angry Men
http://www.wikidata.org/entity/Q2875 Gone with the Wind
http://www.wikidata.org/entity/Q3092 The Man Between
http://www.wikidata.org/entity/Q3187 Rough Night in Jericho
http://www.wikidata.org/entity/Q3208 Alien Raiders

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424")

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc")

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc") %>%            
  spq_add("?loc wdt:P625 ?coords") 

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc") %>%            
  spq_add("?loc wdt:P625 ?coords") %>%  
  spq_add("?film wdt:P3383 ?image") 

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc") %>%            
  spq_add("?loc wdt:P625 ?coords") %>%  
  spq_add("?film wdt:P3383 ?image") %>% 
  spq_add("?film wdt:P921 ?subject", .required=FALSE) 

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc") %>%            
  spq_add("?loc wdt:P625 ?coords") %>%  
  spq_add("?film wdt:P3383 ?image") %>% 
  spq_add("?film wdt:P921 ?subject", .required=FALSE) %>%          
  spq_add("?film wdt:P577 ?date") 

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc") %>%            
  spq_add("?loc wdt:P625 ?coords") %>%  
  spq_add("?film wdt:P3383 ?image") %>% 
  spq_add("?film wdt:P921 ?subject", .required=FALSE) %>%          
  spq_add("?film wdt:P577 ?date") %>%   
  spq_label(film,loc,subject) 

Données enrichies

query=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P840 ?loc") %>%            
  spq_add("?loc wdt:P625 ?coords") %>%  
  spq_add("?film wdt:P3383 ?image") %>% 
  spq_add("?film wdt:P921 ?subject", .required=FALSE) %>%          
  spq_add("?film wdt:P577 ?date") %>%   
  spq_label(film,loc,subject) %>% 
  spq_mutate(year=year(date)) %>% 
  spq_group_by(film,film_label,loc,loc_label,coords,image) %>%
  spq_summarise(year=min(year),
                subject_label=str_c(unique(subject_label),sep="; ")) 

df_films=spq_perform(query)

Cette table comprend 827 lignes (films avec localisation narrative, coordonnées associées et affiche). Voici les premières:

df_films_show
film_label loc_label coords image subject_label year
Hiroshima mon amour Hiroshima Point(132.455305555 34.38525) http://commons.wikimedia.org/wiki/Special:FilePath/Paris%20Cin%C3%A9ma%20Le%20Louxor%207194.JPG atomic bombings of Hiroshima and Nagasaki; aviation 1959
The Battle of Algiers Algeria Point(1.0 28.0) http://commons.wikimedia.org/wiki/Special:FilePath/La%20bataille%20d%27Alger%20film.jpg revolution; Algerian War 1966
The Sheik Algeria Point(1.0 28.0) http://commons.wikimedia.org/wiki/Special:FilePath/The%20Sheik%20Poster%201921.jpg 1921
Under Two Flags Algeria Point(1.0 28.0) http://commons.wikimedia.org/wiki/Special:FilePath/Under%20Two%20Flags%20pg1036.jpg 1936
The Winds of the Aures Algeria Point(1.0 28.0) http://commons.wikimedia.org/wiki/Special:FilePath/Le%20Vent%20des%20Aures.jpg Algerian War 1966
The Repentant Algeria Point(1.0 28.0) http://commons.wikimedia.org/wiki/Special:FilePath/Affiche%20210%20Le%20repenti%20Fr.jpg 2012

Carte mondiale des lieux de fiction (films avec affiche)

Package glitter: vue d’ensemble

Un package qui suit quelques principes du tidyverse…

  • usage du pipe %>%
  • fonctions à préfixe (ici spq_)
  • vise à la facilité d’utilisation (décomposition en étapes élémentaires)
  • évaluation tidy (référence directe aux noms de variables)
  • attention accordée à la documentation (par exemple via des vignettes)

Package glitter: fonctions principales

Fonctions de base:

  • spq_init() pour initier une requête
  • spq_add() pour rajouter un motif de triplet
  • spq_perform() pour envoyer la requête

Fonctions inspirées de dplyr :

  • spq_filter()
  • spq_select()
  • spq_arrange()
  • spq_mutate()
  • spq_group_by()
  • spq_summarise()

➡️ “Where the magic is” (Maëlle)

Dimension de la requête?

Combien de films dans Wikidata:

tib <- spq_init() %>%                 
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_summarise(n_films=n()) %>%      # Résume en comptant le nombre de films puis
  spq_perform()                       # Envoie la requête
n_films
299292

Dimensionnement des requêtes

Temps de réponse du serveur limité par un paramètre de Time out:

  • Wikidata Query Service : 60s
  • client (par ex. glitter): 300s

Pour film:

df=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_summarise(n=n()) %>% 
  spq_perform()
df
n
299292
  • Wikidata Query Service : ❌
  • client (par ex. glitter): ✅️

Dimensionnement des requêtes

Temps de réponse du serveur limité par un paramètre de Time out:

  • Wikidata Query Service : 60s
  • client (par ex. glitter): 300s

Pour film, date:

df=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>%  
  spq_add("?film wdt:P577 ?date") %>% 
  spq_summarise(n=n()) %>% 
  spq_perform()
df
n
314383
  • Wikidata Query Service : ❌
  • client (par ex. glitter): ❌️

Dimensionnement des requêtes

Temps de réponse du serveur limité par un paramètre de Time out:

  • Wikidata Query Service : 60s
  • client (par ex. glitter): 300s

Pour film, date, image:

df=spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P577 ?date") %>% 
  spq_add("?film wdt:P3383 ?image") %>% 
  spq_summarise(n=n()) %>% 
  spq_perform()
df
n
2756
  • Wikidata Query Service : ✅️
  • client (par ex. glitter): ✅️

Combinaison de requêtes

Si on voulait par exemple récupérer le genre de film (comédie, drame, film d’aventure, etc.) et les acteurs et actrices:

spq_init() %>%                     
  spq_add("?film wdt:P31 wd:Q11424") %>% 
  spq_add("?film wdt:P136 ?genre") %>%
  spq_add("?film wdt:P161 ?actor",.required=FALSE) %>% 
  spq_tally() %>% 
  spq_perform()
n
1851235

Combinaison de requêtes

get_genre_and_actors=function(film_id){
  film_id=paste0("<",film_id,">")
  result=spq_init() %>%
      spq_set(film= film_id) %>%
      spq_add("?film wdt:P136 ?genre") %>%
      spq_add("?film wdt:P161 ?actor",.required=FALSE) %>%
      spq_label(genre, actor) %>%
      spq_select(-film) %>%
      spq_perform()
  return(result)
}

tib_genre_actors=df_films %>%
   head() %>% 
   mutate(data=purrr::map(film,get_genre_and_actors)) %>% 
   unnest(cols=data)
tib_genre_actors %>%
  select(film_label,genre_label,actor_label)
film_label genre_label actor_label
Hiroshima mon amour romance film Bernard Fresson
Hiroshima mon amour romance film Eiji Okada
Hiroshima mon amour romance film Pierre Barbaud
Hiroshima mon amour romance film Emmanuelle Riva
Hiroshima mon amour drama film Bernard Fresson
Hiroshima mon amour drama film Eiji Okada
Hiroshima mon amour drama film Pierre Barbaud
Hiroshima mon amour drama film Emmanuelle Riva
The Battle of Algiers drama film Larbi Zekkal
The Battle of Algiers drama film Brahim Haggiag
The Battle of Algiers drama film Jean Martin
The Battle of Algiers drama film Saadi Yacef
The Battle of Algiers drama film Mohamed Ben Kassen
The Battle of Algiers drama film Fusia El Kader
The Battle of Algiers docudrama Larbi Zekkal
The Battle of Algiers docudrama Brahim Haggiag
The Battle of Algiers docudrama Jean Martin
The Battle of Algiers docudrama Saadi Yacef
The Battle of Algiers docudrama Mohamed Ben Kassen
The Battle of Algiers docudrama Fusia El Kader
The Sheik drama film Lucien Littlefield
The Sheik drama film George Waggner
The Sheik drama film Frank Butler
The Sheik drama film Polly Ann Young
The Sheik drama film Sally Blane
The Sheik drama film Walter Long
The Sheik drama film Natacha Rambova
The Sheik drama film Patsy Ruth Miller
The Sheik drama film Adolphe Menjou
The Sheik drama film Agnes Ayres
The Sheik drama film Loretta Young
The Sheik drama film Rudolph Valentino
The Sheik silent film Lucien Littlefield
The Sheik silent film George Waggner
The Sheik silent film Frank Butler
The Sheik silent film Polly Ann Young
The Sheik silent film Sally Blane
The Sheik silent film Walter Long
The Sheik silent film Natacha Rambova
The Sheik silent film Patsy Ruth Miller
The Sheik silent film Adolphe Menjou
The Sheik silent film Agnes Ayres
The Sheik silent film Loretta Young
The Sheik silent film Rudolph Valentino
The Sheik romance film Lucien Littlefield
The Sheik romance film George Waggner
The Sheik romance film Frank Butler
The Sheik romance film Polly Ann Young
The Sheik romance film Sally Blane
The Sheik romance film Walter Long
The Sheik romance film Natacha Rambova
The Sheik romance film Patsy Ruth Miller
The Sheik romance film Adolphe Menjou
The Sheik romance film Agnes Ayres
The Sheik romance film Loretta Young
The Sheik romance film Rudolph Valentino
The Sheik film based on literature Lucien Littlefield
The Sheik film based on literature George Waggner
The Sheik film based on literature Frank Butler
The Sheik film based on literature Polly Ann Young
The Sheik film based on literature Sally Blane
The Sheik film based on literature Walter Long
The Sheik film based on literature Natacha Rambova
The Sheik film based on literature Patsy Ruth Miller
The Sheik film based on literature Adolphe Menjou
The Sheik film based on literature Agnes Ayres
The Sheik film based on literature Loretta Young
The Sheik film based on literature Rudolph Valentino
Under Two Flags romance film Jean De Briac
Under Two Flags romance film Gino Corrado
Under Two Flags romance film Fred Malatesta
Under Two Flags romance film Steve Clemente
Under Two Flags romance film Louis Mercier
Under Two Flags romance film Karl Hackett
Under Two Flags romance film Rolfe Sedan
Under Two Flags romance film Clifford Smith
Under Two Flags romance film Lumsden Hare
Under Two Flags romance film J. Edward Bromberg
Under Two Flags romance film Georgios Regas
Under Two Flags romance film Gaston Glass
Under Two Flags romance film Bob Burns
Under Two Flags romance film Jack Pennick
Under Two Flags romance film Onslow Stevens
Under Two Flags romance film Thomas Beck
Under Two Flags romance film Gregory Ratoff
Under Two Flags romance film Tor Johnson
Under Two Flags romance film Frank Reicher
Under Two Flags romance film Herbert Mundin
Under Two Flags romance film Fritz Leiber
Under Two Flags romance film Marc Lawrence
Under Two Flags romance film Nigel Bruce
Under Two Flags romance film C. Henry Gordon
Under Two Flags romance film Francis McDonald
Under Two Flags romance film Victor McLaglen
Under Two Flags romance film John Carradine
Under Two Flags romance film Simone Simon
Under Two Flags romance film Rosalind Russell
Under Two Flags romance film Claudette Colbert
Under Two Flags romance film Ronald Colman
Under Two Flags film based on a novel Jean De Briac
Under Two Flags film based on a novel Gino Corrado
Under Two Flags film based on a novel Fred Malatesta
Under Two Flags film based on a novel Steve Clemente
Under Two Flags film based on a novel Louis Mercier
Under Two Flags film based on a novel Karl Hackett
Under Two Flags film based on a novel Rolfe Sedan
Under Two Flags film based on a novel Clifford Smith
Under Two Flags film based on a novel Lumsden Hare
Under Two Flags film based on a novel J. Edward Bromberg
Under Two Flags film based on a novel Georgios Regas
Under Two Flags film based on a novel Gaston Glass
Under Two Flags film based on a novel Bob Burns
Under Two Flags film based on a novel Jack Pennick
Under Two Flags film based on a novel Onslow Stevens
Under Two Flags film based on a novel Thomas Beck
Under Two Flags film based on a novel Gregory Ratoff
Under Two Flags film based on a novel Tor Johnson
Under Two Flags film based on a novel Frank Reicher
Under Two Flags film based on a novel Herbert Mundin
Under Two Flags film based on a novel Fritz Leiber
Under Two Flags film based on a novel Marc Lawrence
Under Two Flags film based on a novel Nigel Bruce
Under Two Flags film based on a novel C. Henry Gordon
Under Two Flags film based on a novel Francis McDonald
Under Two Flags film based on a novel Victor McLaglen
Under Two Flags film based on a novel John Carradine
Under Two Flags film based on a novel Simone Simon
Under Two Flags film based on a novel Rosalind Russell
Under Two Flags film based on a novel Claudette Colbert
Under Two Flags film based on a novel Ronald Colman
Under Two Flags adventure film Jean De Briac
Under Two Flags adventure film Gino Corrado
Under Two Flags adventure film Fred Malatesta
Under Two Flags adventure film Steve Clemente
Under Two Flags adventure film Louis Mercier
Under Two Flags adventure film Karl Hackett
Under Two Flags adventure film Rolfe Sedan
Under Two Flags adventure film Clifford Smith
Under Two Flags adventure film Lumsden Hare
Under Two Flags adventure film J. Edward Bromberg
Under Two Flags adventure film Georgios Regas
Under Two Flags adventure film Gaston Glass
Under Two Flags adventure film Bob Burns
Under Two Flags adventure film Jack Pennick
Under Two Flags adventure film Onslow Stevens
Under Two Flags adventure film Thomas Beck
Under Two Flags adventure film Gregory Ratoff
Under Two Flags adventure film Tor Johnson
Under Two Flags adventure film Frank Reicher
Under Two Flags adventure film Herbert Mundin
Under Two Flags adventure film Fritz Leiber
Under Two Flags adventure film Marc Lawrence
Under Two Flags adventure film Nigel Bruce
Under Two Flags adventure film C. Henry Gordon
Under Two Flags adventure film Francis McDonald
Under Two Flags adventure film Victor McLaglen
Under Two Flags adventure film John Carradine
Under Two Flags adventure film Simone Simon
Under Two Flags adventure film Rosalind Russell
Under Two Flags adventure film Claudette Colbert
Under Two Flags adventure film Ronald Colman
The Winds of the Aures war film Mustapha Kateb
The Winds of the Aures war film Mohamed Chouikh
The Winds of the Aures war film Aïcha Adjouri
The Winds of the Aures war film Hassan El-Hassani
The Winds of the Aures war film Hadj Smaine Mohamed Seghir
The Repentant drama film

Généralisation à l’usage d’autres endpoints

Exemple de requête sur le SPARQL endpoint de dbpedia:

tib <- spq_init("dbpedia") %>%
  spq_add("?person dbo:birthPlace ?place") %>% # ?personne est née à ?place
  spq_add("?person dbo:profession ?job") %>%   # ?personne a pour profession ?job
  spq_add("?job rdfs:label ?job_label") %>%     # ?job a pour étiquette ?job_label
  spq_filter(lang(job_label)=="en") %>%         # Filtre pour ne garder que les étiquettes en anglais
  spq_add("?place rdfs:label 'Lyon'@en") %>%   # ?place a pour étiquette 'Lyon' (en anglais)
  spq_head(10) %>%
  spq_perform()                       # Envoie sur le SPARQL endpoint de DBPEDIA
job job_label person place
http://dbpedia.org/resource/Resident_magistrate Resident magistrate http://dbpedia.org/resource/Walter_Pilliet http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Academician Academician http://dbpedia.org/resource/Stefan_Meller http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Lawyer Lawyer http://dbpedia.org/resource/André_Potocki http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Lawyer Lawyer http://dbpedia.org/resource/François-Noël_Buffet http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Linguist Linguist http://dbpedia.org/resource/Bernard_Cerquiglini http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Physician Physician http://dbpedia.org/resource/Nora_Berra http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Physician Physician http://dbpedia.org/resource/Bernard_Accoyer http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Physician Physician http://dbpedia.org/resource/Jean-François_Mattei http://dbpedia.org/resource/Lyon
http://dbpedia.org/resource/Physician Physician http://dbpedia.org/resource/Delphine_Bagarry http://dbpedia.org/resource/Lyon

Généralisation à d’autres endpoints: hal

query_hal <- spq_init("hal") %>%
  spq_add("?doc dcterms:creator ?createur") %>%
  spq_add("?createur hal:structure ?affiliation") %>%
  spq_add("?createur hal:person ?personne") %>%
  spq_add("?personne foaf:name 'Lise Vaudor'") %>% 
  spq_add("?doc dcterms:type ?type") %>%
  spq_label(type, .languages = "fr") %>%
  spq_add("?doc dcterms:bibliographicCitation ?citation") %>%
  spq_add("?doc dcterms:issued ?date") %>%
  spq_mutate(date = str_sub(as.character(date), 1, 4)) %>%
  spq_group_by(citation, type_label, date) %>%
  spq_summarise(affiliation = str_c(affiliation, sep = ", ")) 

sequins::plot_query(query_hal)

docs_lv_hal=query_hal %>%
  spq_perform()
docs_lv_hal
citation date type_label affiliation
Lise Vaudor, E. Parrot, Hervé Piégay. Describing and detecting changes at various scales in geomorphological features: the example of the Rhône river talweg elevation. AGU Fall Meeting, 2013, 2013, San Francisco, United States. AGU Fall Meeting, 2013. &#x27E8;halshs-01341687&#x27E9; 2013 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
Lise Vaudor, Sébastien Rey-Coyrehourcq, Fabien Pfaender. Webscrapping avec R. École thématique. Florence Villa Finaly, Italy. 2018. &#x27E8;cel-02285503&#x27E9; 2018 Note de lecture https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor, Hervé Piégay, Vincent Wawrzyniak, Spitoni Marie. The Wavelet ToolKat: A set of tools for the analysis of series through wavelet transforms. Application to the channel curvature and the slope control of three free meandering rivers in the Amazon basin. European Geosciences Union General Assembly, Apr 2016, Vienna, Austria. &#x27E8;halshs-01618908&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Véronique Benacchio, Hervé Piégay, Thomas Buffin-Bélanger, Lise Vaudor. A new methodology for monitoring wood fluxes in rivers using a ground camera: Potential and limits. Geomorphology, 2017, 279, pp.44-58. &#x27E8;10.1016/j.geomorph.2016.07.019&#x27E9;. &#x27E8;hal-01424907&#x27E9; 2017 Article dans une revue https://data.archives-ouvertes.fr/structure/145345, https://data.archives-ouvertes.fr/structure/145345
V. Benacchio, Hervé Piégay, Thomas Buffin-Belanger, K. Michel, Lise Vaudor. Portential and challenges of ground imagery to study wood debris production and ice dynamics in fluvial systems. 34th EARSel (European Association of Remote Sensing Laboratories) Symposium, 2014, EARSel, Jun 2014, Warsaw, Poland. &#x27E8;halshs-01347758&#x27E9; 2014 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Thomas Buhler, Emeline Comby, Lise Vaudor, Thilo von Pape. Beyond ‘good’ and ‘bad’ cyclists. On compensation effects between risk taking, safety equipment and secondary tasks. Journal of Transport & Health, Elsevier, 2021, 22, pp.101131. &#x27E8;10.1016/j.jth.2021.101131&#x27E9;. &#x27E8;hal-03283869&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Matthieu Adam, Marylise Cottet, Sylvie Morardet, Lise Vaudor, Laure Coussout, et al.. Cycling along a River: New access, new values?. Sustainability, 2020, 12 (22), pp.9311. &#x27E8;10.3390/su12229311&#x27E9;. &#x27E8;hal-03007950&#x27E9; 2020 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Bastien Bonef, Lionel Gérard, Jean-Luc Rouvière, Adeline Grenier, Pierre-Henri Jouneau, et al.. Atomic arrangement at ZnTe/CdSe interfaces determined by high resolution scanning transmission electron microscopy and atom probe tomography. Applied Physics Letters, American Institute of Physics, 2015, 106 (5), pp.051904. &#x27E8;10.1063/1.4907648&#x27E9;. &#x27E8;hal-01132475&#x27E9; 2015 Article dans une revue https://data.archives-ouvertes.fr/structure/6054
Hervé Piégay, Fanny Arnaud, Cassel Mathieu, Thomas Depret, Adrien Alber, et al.. Suivi par RFID de la mobilité des galets : retour sur 10 ans d’expérience en grandes rivières. Bulletin de la Société Géographique de Liège, 2016, 67. &#x27E8;hal-01402008&#x27E9; 2016 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Jérémie Riquier, Hervé Piégay, Nicolas Lamouroux, Lise Vaudor. Spatial patterns and temporal dynamics of fine sedimentation in restored floodplain channels (Rhône River, France): actual trends and assessment of their potential persistence as aquatic habitat.. "Towards the best practice of river restoration and maintenance", Sep 2016, Krakow, Poland. &#x27E8;hal-01402006&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Vincent Wawrzyniak, Hervé Piégay, Pascal Allemand, Lise Vaudor, Régis Goma, et al.. How geomorphology and groundwater level affect the spatio-temporal variability of riverine cold water patches? . European Geosciences Union General Assembly, Apr 2016, Vienna, Austria. &#x27E8;halshs-01618905&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor. Estimation de la moyenne et de la variance de l’abondance de populations en écologie à partir d’échantillons de petite taille. Sciences agricoles. Université Claude Bernard - Lyon I, 2011. Français. &#x27E8;NNT : 2011LYO10013&#x27E9;. &#x27E8;tel-00842873&#x27E9; 2011 Thèse https://data.archives-ouvertes.fr/structure/182258
Hervé Piégay, G. Mathias Kondolf, J. Toby Minear, Lise Vaudor. Trends in publications in fluvial geomorphology over two decades: A truly new era in the discipline owing to recent technological revolution?. Geomorphology, 2015, 248, pp.489-500. &#x27E8;10.1016/j.geomorph.2015.07.039&#x27E9;. &#x27E8;hal-01223361&#x27E9; 2015 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Marie Spitoni, Hervé Piégay, Lise Vaudor. Impact des barrages sur l’organisation longitudinale des meso-habitats fluviaux. Journée technique de l’ONEMA et du MEDDE : Avancées, apports et perspectives de la télédétection pour la caractérisation physique des corridors fluviaux, ONEMA, MEDDE, Jun 2016, Paris, France. &#x27E8;halshs-01362270&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Anne-Lise Boyer, Lise Vaudor, Yves-François Le Lay, Pascal Marty. Building Consensus? The Production of a Water Conservation Discourse Through Twitter: The Water use it Wisely Campaign in Arizona. The Environmental Communication Yearbook, 2020, pp.1-16. &#x27E8;10.1080/17524032.2020.1821743&#x27E9;. &#x27E8;halshs-02985579&#x27E9; 2020 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Nicolas Lamouroux, Jean Michel Olivier, Emmanuel Castella, Martin Daufresne, Maxence Forcellini, et al.. Testing habitat-based predictions of community responses to river flow restoration: generic lessons from a data-rich case study. 11th International Symposium on Ecohydraulics, Feb 2016, Melbourne, Australia. &#x27E8;halshs-01319181&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor, Nicolas Lamouroux. Modélisation de la distribution de petits échantillons de données d’abondance : exemple des poissons du bassin du Rhône. 41èmes Journées de Statistique, SFdS, Bordeaux, 2009, Bordeaux, France, France. &#x27E8;inria-00386736&#x27E9; 2009 Communication dans un congrès https://data.archives-ouvertes.fr/structure/128705, https://data.archives-ouvertes.fr/structure/300005
Sergi Cuesta, Yoann Curé, Fabrice Donatini, Lou Denaix, Edith Bellet-Amalric, et al.. AlGaN/GaN asymmetric graded-index separate confinement heterostructures designed for electron-beam pumped UV lasers. Optics Express, 2021, 29 (9), pp.13084-13093. &#x27E8;10.1364/OE.424027&#x27E9;. &#x27E8;hal-03168197&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/1066905
Matthieu Adam, Marylise Cottet, Sylvie Morardet, Lise Vaudor, Laure Coussout, et al.. Pédaler le long d’un fleuve : nouvel accès, nouvelles valeurs ?. Valua Terra. Faire la valeur des environnements. Perspectives croisées françaises et brésiliennes, Éditions deux-cent-cinq, pp.237-255, 2022, 978–2–919380–55–8. &#x27E8;hal-03920879&#x27E9; 2022 Chapitre d’ouvrage https://data.archives-ouvertes.fr/structure/145345
Nicolas Escach, Lise Vaudor. Réseaux de villes et processus de recomposition des niveaux : le cas des villes baltiques. Cybergeo : Revue européenne de géographie / European journal of geography, 2014, pp.24. &#x27E8;10.4000/cybergeo.26336&#x27E9;. &#x27E8;halshs-01067276v2&#x27E9; 2014 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, D. Roux-Michollet, L. Chirol, A. Antonio, K. Michel, et al.. Outils collaboratifs de gestion et diffusion de données socio-environnementale. Retours d’expérience de l’OHM Vallée du Rhône. Seminair OHMI Téssékéré,Atelier Bases De Données,, Oct 2017, Dakar, Sénégal. &#x27E8;halshs-01677254&#x27E9; 2017 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Marylise Cottet, Lise Vaudor, Marie Augendre. Does every kind of stakeholders perceive and value identically rivers? Contribution of an eye-tracking experiment for a river restoration project (Yzeron River, France). AAG Annual Meeting 2015, Apr 2015, Chicago, United States. &#x27E8;halshs-01250420&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
V. Banacchio, Hervé Piégay, K. Michel, Lise Vaudor. Identification of factors disrupting remote bathymetry: experimental approach from ground imagery on the lower Ain river (France). 8th IAG International Conference on Geomorphology. Session S26B - Remote Sensing (including Laser scanning application of radar, etc.), IAG, Aug 2013, Paris, France. &#x27E8;halshs-01347202&#x27E9; 2013 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Jean Michel Olivier, Nicolas Lamouroux, Eve Sivade, Marc Zylberblat, Emmanuel Castella, et al.. Hydraulic and ecological restoration of the Rhône River: feed-back and lessons. I.S. River 2015, Jun 2015, Lyon, France. &#x27E8;halshs-01319207&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Peter Downs, Hervé Piégay, Jeremy Piffady, Laurent Valette, Lise Vaudor. A multi-scalar approach for modelling river channel change in the Anthropocene. 19th EGU General Assembly, Apr 2017, Vienna, Austria. &#x27E8;hal-01619278&#x27E9; 2017 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Thomas Depret, Hervé Piégay, Mathieu Cassel, Brice Noirot, Lise Vaudor, et al.. Mesures et modélisations du fonctionnement hydrosédimentaire du secteur de Miribel-Jonage. OSR4 | Action I.2. [Rapport de recherche] Cnrs; ENS de Lyon; INRAE. 2018. &#x27E8;hal-03748489&#x27E9; 2018 Rapport https://data.archives-ouvertes.fr/structure/145345
Nicolas Tissot, Jérémie Riquier, Hervé Piégay, Lise Vaudor. Geomorphic responses of restored frequently flowing side channels along the Rhône River. International Conference on the Status and Future of the World’s Large Rivers, Session "Sediment Transport & River Morphology", Aug 2021, Moscou, Russia. &#x27E8;hal-03338027&#x27E9; 2021 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Matthieu Adam, Anne-Laure Collard, Marylise Cottet, Sylvie Morardet, Anne Riviere-Honegger, et al.. A cycle route to enhance the heritage and landscape of a territory: for which users and to what effect? The case of the Rhône River. AAG Annual Meeting, Apr 2019, Washington, United States. &#x27E8;hal-02429292&#x27E9; 2019 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Nicolas Escach, Lise Vaudor. Réseaux de villes et processus de recomposition des niveaux : le cas des villes baltiques. Cybergeo : Revue européenne de géographie / European journal of geography, 2014, pp.24. &#x27E8;halshs-01067276v1&#x27E9; 2014 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Spitoni Marie, Hervé Piégay, Lise Vaudor. Assessment of dam impact on longitudinal sequences on in-stream habitats. 10th European Conference on Ecological Restoration, Aug 2016, Freising, Germany. &#x27E8;halshs-01619131&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Hervé Piégay, Lise Vaudor. Statistics and fluvial geomorphology. M.G. Kondolf, H. Piégay. Tools in Fluvial Geomorphology, J. Wiley and Sons, pp.476-506, 2016, 9780470684054 / 9781118648551. &#x27E8;10.1002/9781118648551.ch21&#x27E9;. &#x27E8;halshs-01338510&#x27E9; 2016 Chapitre d’ouvrage https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Hervé Piégay, D. Béal, Pierre Collery, Lise Vaudor, et al.. Monitoring gravel augmentation in a large regulated river and implications for process-based restoration. Earth Surface Processes and Landforms, 2017, &#x27E8;10.1002/esp.4161&#x27E9;. &#x27E8;hal-01563308&#x27E9; 2017 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Ninon Briot, Emmanuelle Boulineau, Lise Vaudor, Lydia Coudroy de Lille. Mapping International Cooperation between European Cities: A Network Analysis of the Interreg C and Urbact Programs. Cybergeo : Revue européenne de géographie / European journal of geography, 2021, &#x27E8;10.4000/cybergeo.37538&#x27E9;. &#x27E8;hal-03366758&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Vincent Wawrzyniak, Hervé Piégay, Pascal Allemand, Lise Vaudor, Philippe Grandjean. Prediction of water temperature heterogeneity of braided rivers using very high resolution thermal infrared (TIR) images. International Journal of Remote Sensing, 2013, 34 (13), pp.4812-4831. &#x27E8;10.1080/01431161.2013.782113&#x27E9;. &#x27E8;hal-00829780&#x27E9; 2013 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Severin Hohensinner, Gregory Egger, Susanne Muhar, Lise Vaudor, Hervé Piégay. What remains today of pre-industrial Alpine rivers? Census of historical and current channel patterns in the Alps. River Research and Applications, 2021, 37 (2), pp.128-149. &#x27E8;10.1002/rra.3751&#x27E9;. &#x27E8;hal-03371775&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
E. Parrot, Hervé Piégay, Michal Tal, Lise Vaudor, Guillaume Fantino. Approche méthodologique de la caractérisation longitudinale des formes fluviales : application au Rhône et interprétation du fonctionnement physique. Colloque: morphodynamique et transport solide en rivière : du terrain au modèles, Université des Sciences et Techniques de Tours, Oct 2012, Tours, France. &#x27E8;halshs-01346295&#x27E9; 2012 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Colchique Cofrade, Anne Rivière-Honegger, Marylise Cottet, Emeline Comby, Nina Cossais, et al.. Paysages et aménagements de gestion des eaux pluviales du campus de La Doua : quelles représentations en ont les usagers ? : Résultats de l’enquête par questionnaire. [Rapport de recherche] Labex IMU; INSA Lyon. 2017, pp.53. &#x27E8;hal-02059252&#x27E9; 2017 Rapport https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor, E. Parrot, Hervé Piégay. Interpreting wavelet-based decompositions of geomorphological features: the example of the Rhône river bathymetry. 8th IAG International Conference on Geomorphology, IAG, Aug 2013, Paris, France. &#x27E8;halshs-01347147&#x27E9; 2013 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Hervé Piégay, Lise Vaudor, Bultingaire Ludovic. Suivi 2013 de la redynamisation sédimentaire du Vieux Rhin. [Rapport de recherche] 31 p., EVS - UMR 5600. 2014. &#x27E8;hal-01313801&#x27E9; 2014 Rapport https://data.archives-ouvertes.fr/structure/145345
Bruno Daudin, Fabrice Donatini, Catherine Bougerol, Bruno Gayral, Edith Bellet-Amalric, et al.. Growth of zinc-blende GaN on muscovite mica by molecular beam epitaxy. Nanotechnology, 2021, 32 (2), pp.025601. &#x27E8;10.1088/1361-6528/abb6a5&#x27E9;. &#x27E8;hal-02991749&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/460265, https://data.archives-ouvertes.fr/structure/460265
Vincent Wawrzyniak, Lise Vaudor, P. Allemand, Hervé Piégay, Jordan Ré-Bahuaud, et al.. Characterization of uncertainty associated with the construction of TIR derived profiles and investigation of river temperature longitudinal patterns at different spatial scales. AGU Fall Meeting, 2013, San Francisco, United States. AGU Fall Meeting. &#x27E8;halshs-01341678&#x27E9; 2013 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
Bruno Daudin, Fabrice Donatini, Catherine Bougerol, Bruno Gayral, Edith Bellet-Amalric, et al.. Growth of zinc-blende GaN on muscovite mica by molecular beam epitaxy. Nanotechnology, Institute of Physics, 2021, 32 (2), pp.025601. &#x27E8;10.1088/1361-6528/abb6a5&#x27E9;. &#x27E8;hal-02991749&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/460265, https://data.archives-ouvertes.fr/structure/460265
Clémence Crapart, Marylise Cottet, Lise Vaudor, Hervé Tronchère. How to qualify and map the values assigned to the Rhône River?. International Symposium of LabExDRIIHM, Oct 2019, Lyon, France. 2019. &#x27E8;hal-02954092&#x27E9; 2019 Poster de conférence https://data.archives-ouvertes.fr/structure/145345
Marylise Cottet, Anne Rivière-Honegger, Lise Vaudor, Léa Colombain, Fanny Dommanget, et al.. The end of a myth: Solving the knotweeds invasion “problem”. Anthropocene, 2020, 30, pp.100240. &#x27E8;10.1016/j.ancene.2020.100240&#x27E9;. &#x27E8;halshs-03095697&#x27E9; 2020 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Marylise Cottet, Clémence Crapart, Hervé Tronchère, Lise Vaudor. CARTEAUVAL -Cartographie des valeurs associées au fleuve Rhône. 2023. &#x27E8;hal-03952049&#x27E9; 2023 Autre publication scientifique https://data.archives-ouvertes.fr/structure/145345
Jean Michel Olivier, Nicolas Lamouroux, Olga Béguin, Anne-Laure Besacier-Monbertrand, Emmanuel Castella, et al.. Suivi scientifique du programme de restauration hydraulique et écologique du Rhône. Un observatoire dynamique de l’état écologique du fleuve. Synthèse. . [Rapport de recherche] LEHNA - UMR C NRS 5023; EVS - UMR 5600; UR MALY, Irstea; Université de Genève, Faculté des Sc iences, Institut des Sciences de l’Environnement. 2014. &#x27E8;halshs-01319250&#x27E9; 2014 Rapport https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor, Sébastien Rey-Coyrehourcq, Fabien Pfaender. Webscrapping avec R. École thématique. Florence Villa Finaly, Italy. 2018. &#x27E8;cel-02285503&#x27E9; 2018 Cours https://data.archives-ouvertes.fr/structure/145345
Anne Honegger, Marylise Cottet, Emeline Comby, Nina Cossais, Colchique Coffrade, et al.. Caractérisation des représentations et des perceptions des micropolluants et des dispositifs techniques par les différents niveaux décisionnels d’acteurs. [Rapport de recherche] Labex IMU; INSA Lyon. 2018, pp.51. &#x27E8;hal-02059226&#x27E9; 2018 Rapport https://data.archives-ouvertes.fr/structure/145345
Maxime Vitter, Pascal Pluvinet, Lise Vaudor, Christine Jacqueminet, Rémy Martin, et al.. An Image Segmentation Process Enhancement for Land Cover Mapping from Very High Resolution Remote Sensing Data Application in a Rural Area. pp 215-233. Connecting a Digital Europe Through Location and Place. Lecture Notes in Geoinformation and Cartography, 2014. &#x27E8;ujm-01620455&#x27E9; 2014 Chapitre d’ouvrage https://data.archives-ouvertes.fr/structure/145345
Anne-Lise Boyer, Lise Vaudor, Yves-François Le Lay, Pascal Marty. Text mining et lexicométrie pour caractériser le discours environnemental sur les consommations urbaines de l’eau : analyse d’une stratégie de communication sur Twitter. Quatorzièmes Rencontres de Théo Quant, Feb 2019, Besançon, France. &#x27E8;hal-02042379&#x27E9; 2019 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Hervé Piégay, Hossein Ghaffarian, Pierre Lemaire, Z Zhang, M Boivin, et al.. Video-monitoring of wood flux: recent advances and next steps. 4th international conference in wood in world rivers, Jan 2019, Valdivia, Chile. &#x27E8;hal-02024793&#x27E9; 2019 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Matthieu Adam, Anne-Laure Collard, Marylise Cottet, Laure Coussout, Sylvie Morardet, et al.. RhônaVel’eau. Synthèse de l’enquête usagers. La valorisation du patrimoine rhodanien à l’épreuve des territoires, des acteurs et des usages. [Rapport de recherche] Laboratoires EVS et G-EAU. 2018, pp.4. &#x27E8;hal-02059201&#x27E9; 2018 Rapport https://data.archives-ouvertes.fr/structure/145345
E. Parrot, Hervé Piégay, Michal Tal, Lise Vaudor. Caractérisation longitudinale du fond du lit du Rhône du Léman à la mer : continuum, discontinuum et contrôles naturels et anthropiques. Conférence internationale IsRivers - Recherches et actions au service des fleuves et des grandes rivières, 2012, Lyon, France. Session B1 - Rivières en tresses, 2012. &#x27E8;halshs-01340756&#x27E9; 2012 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
Marylise Cottet, Marie Augendre, Mathilde Bozonnet, Vincent Brault, Dimitri Magnet, et al.. Traquer le regard, vers une caractérisation des bénéfices sociaux induits par les travaux de restauration écologique en territoire urbain. [Rapport de recherche] rapport final, Agence de l’Eau Rhône Méditerranée Corse, 2-4 allée de Lodz, 69363 Lyon Cedex 07; Zone atelier Bassin du Rhône (ZABR). 2014, pp.Action 37. &#x27E8;halshs-01098183&#x27E9; 2014 Rapport https://data.archives-ouvertes.fr/structure/301088, https://data.archives-ouvertes.fr/structure/145345, https://data.archives-ouvertes.fr/structure/6818
Vincent Wawrzyniak, Hervé Piégay, Pascal Allemand, Lise Vaudor, Régis Goma, et al.. Effects of geomorphology and groundwater level on the spatio-temporal variability of riverine cold water patches assessed using thermal infrared (TIR) remote sensing. Remote Sensing of Environment, 2016, 175, pp.337-348. &#x27E8;10.1016/j.rse.2015.12.050&#x27E9;. &#x27E8;hal-01260530&#x27E9; 2016 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Matthieu Adam, Marylise Cottet, Anne-Laure Collard, Laure Coussout, Anne Rivière-Honegger, et al.. Quand les cyclistes redécouvrent les berges du Rhône. Nouvel accès, nouvelles valeurs ?. I.S. Rivers 2018 3e conférence internationale sur les recherches et actions au service des fleuves et grandes rivières, Jun 2018, Lyon, France. pp.3. &#x27E8;halshs-01973196&#x27E9; 2018 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Aurélie Antonio, Flora Branger, Lucas Chirol, Chloé Le Bescond, et al.. Valorisation, web SIG et bases de données de l’OSR. Journée de restitution de l’OSR4, Jan 2018, Lyon, France. &#x27E8;hal-01892723&#x27E9; 2018 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, M. Cassel, Hervé Piégay, J. Lavé, L. Perret, et al.. Utilisations de la technologie RFID pour le suivi des sédiments en rivière. Workshop traceurs poissons / sédiments, EDF, Apr 2015, Lyon, France. &#x27E8;halshs-01359560&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Véronique Benacchio, Hervé Piégay, Thomas Buffin-Belanger, Lise Vaudor, Kristell Michel. Automatic imagery analysis to monitor wood flux in rivers (Rhône River, France). Third International Conference on Wood in World Rivers, Jul 2015, Padova, Italy. &#x27E8;halshs-01618826&#x27E9; 2015 Poster de conférence https://data.archives-ouvertes.fr/structure/145345
Thomas Depret, Hervé Piégay, Violaine Dugué, Lise Vaudor, Jean-Baptiste Faure, et al.. Estimating and restoring bedload transport through a run-of-river reservoir. Science of the Total Environment, 2019, 654, pp.1146-1157. &#x27E8;hal-01966278&#x27E9; 2019 Article dans une revue https://data.archives-ouvertes.fr/structure/300005
Clément Roux, A. Alber, Mélanie Bertrand, Lise Vaudor, Hervé Piégay. "Fluvial Corridor" : a new ArcGis Toolbox Package for Multiscale Exploring Riverscapes. Geomorphology, 2014. &#x27E8;halshs-01218041&#x27E9; 2014 Article dans une revue https://data.archives-ouvertes.fr/structure/6818, https://data.archives-ouvertes.fr/structure/145345, https://data.archives-ouvertes.fr/structure/301088
Lise Vaudor, Nicolas Lamouroux, Jean Michel Olivier, Maxence Forcellini. How sampling influences the statistical power to detect changes in abundance: an application to river restoration. Freshwater Biology, 2015, 60 (6), pp.1192-1207. &#x27E8;10.1111/fwb.12513&#x27E9;. &#x27E8;hal-01328509&#x27E9; 2015 Article dans une revue https://data.archives-ouvertes.fr/structure/458855
Mathieu Cassel, Hervé Piégay, Jérôme Lavé, Lise Vaudor, Danang Hadmoko Sri, et al.. Evaluating a 2D image-based computerized approach for measuring riverine pebble roundness. Geomorphology, 2018, 311, pp.143 - 157. &#x27E8;10.1016/j.geomorph.2018.03.020&#x27E9;. &#x27E8;hal-01923456&#x27E9; 2018 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Nicolas Lamouroux, Lise Vaudor, J.M. Olivier, M. Forcellini, Hervé Piégay, et al.. The Rhône River physical restoration: a data-rich case study and its lessons for ecological monitoring. Symposium for European Freshwater Sciences 2015 "Freshwater sciences coming home", Jul 2015, Genève, Switzerland. &#x27E8;halshs-01361728&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Marylise Cottet, Anne Rivière-Honegger, Lise Vaudor, Léa Colombain, Fanny Dommanget, et al.. The end of a myth: Solving the knotweeds invasion “problem”. Anthropocene, 2020, 30, pp.11/100240. &#x27E8;10.1016/j.ancene.2020.100240&#x27E9;. &#x27E8;hal-03129029&#x27E9; 2020 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Marie Spitoni, Hervé Piégay, Lise Vaudor. Apport de la télédétection pour caractériser les faciès géomorphologiques des cours d’eau à graviers. 15ème Congrès de l’ASF (Association des Sédimentologues Français), Oct 2015, Chambéry, France. &#x27E8;halshs-01361766&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Vincent Wawrzyniak, Hervé Piégay, Pascal Allemand, Lise Vaudor, P. Grandjean. Is braided river index only related to discharge and geomorphic activity? Feedbacks from thermal infrared remote sensing. 8th IAG International Conference on Geomorphology. Session S19. Fluvial geomorphology and river management, IAG, Aug 2013, Pariss, France. &#x27E8;halshs-01347159&#x27E9; 2013 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Marie Spitoni, Clément Roux, A. Alber, Mélanie Bertrand, Lise Vaudor, et al.. FluvialCorridor - un nouvel outil SIG pour la caractérisation multi-échelles et l’aide à la gestion des corridors fluviaux. Conférences SIG - Conférence francophone Esri, Esri, 2015, non renseignée, France. &#x27E8;halshs-01361762&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Cassel Mathieu, Hervé Piégay, Jérôme Lavé, Franck Perret, et al.. Utilisations de la technologie RFID pour le suivi des sédiments en rivière. Workshop scientifique-EDF "Traceurs poissons et sédiments", Apr 2015, Lyon, France. &#x27E8;hal-01313809&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Jean-Michel Olivier, Nicolas Lamouroux, Olga Béguin, Anne-Laure Besacier-Monbertrand, Emmanuel Castella, et al.. RHONECO : Suivi scientifique du programme de restauration hydraulique et écologique du Rhône. Un observatoire dynamique de l’état écologique du fleuve. Synthèse (2014). [Rapport de recherche] Irstea; LEHNA - UMR CNRS 5023; EVS - UMR 5600; UR MALY, Irstea; Université de Genève, Faculté des Sciences, Institut des Sciences de l’Environnement. 2014, pp.31. &#x27E8;hal-02606651&#x27E9; 2014 Rapport https://data.archives-ouvertes.fr/structure/145345
Matthieu Adam, Marylise Cottet, Sylvie Morardet, Lise Vaudor, Laure Coussout, et al.. Cycling along a River: New access, new values?. Sustainability, MDPI, 2020, 12 (22), pp.9311. &#x27E8;10.3390/su12229311&#x27E9;. &#x27E8;hal-03007950&#x27E9; 2020 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Vincent Wawrzyniak, Pascal Allemand, Hervé Piégay, Lise Vaudor, P. Grandjean. Analyse spatio-temporelle des patrons thermiques de 9 rivières en tresses par imagerie infrarouge thermique (IRT) très haute résolution. Conférence internationale IsRivers - Recherches et actions au service des fleuves et grandes rivières, 2012, Lyon, France. Session B1 - Rivières en tresses, 2012. &#x27E8;halshs-01340776&#x27E9; 2012 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
V. Benacchio, Hervé Piégay, Thomas Buffin-Belanger, Lise Vaudor, K. Michel. Use of ground cameras to monitor riverscape changes: example for wood rafts and ice covers dynamics. Conférence Internationale IsRivers 2015, Jun 2015, Lyon, France. Conférence Internationale IsRivers 2015, 2015. &#x27E8;halshs-01342338&#x27E9; 2015 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
Sergi Cuesta, Yoann Curé, Fabrice Donatini, Lou Denaix, Edith Bellet-Amalric, et al.. AlGaN/GaN asymmetric graded-index separate confinement heterostructures designed for electron-beam pumped UV lasers. Optics Express, Optical Society of America - OSA Publishing, 2021, 29 (9), pp.13084-13093. &#x27E8;10.1364/OE.424027&#x27E9;. &#x27E8;hal-03168197&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/1066905
Maxime Vitter, Christine Jacqueminet, Bernard Etlicher, Rémy Martin, Pascal Pluvinet, et al.. An image segmentation process enhancement for land cover mapping from Very High Resolution remote sensing data. 17th AGILE Conference on Geographic Information Science, Jun 2014, Castellon, Spain. &#x27E8;ujm-01620462&#x27E9; 2014 Communication dans un congrès https://data.archives-ouvertes.fr/structure/458855
Nicolas Escach, Lise Vaudor. Réseaux de villes et processus de recomposition des niveaux : le cas des villes baltiques. Cybergeo : Revue européenne de géographie / European journal of geography, 2014, pp.679. &#x27E8;10.4000/cybergeo.26336&#x27E9;. &#x27E8;halshs-01216190&#x27E9; 2014 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Bertrand Morandi, Hervé Piégay, Nicolas Lamouroux, Lise Vaudor. How is success or failure in river restoration projects evaluated? Feedback from French restoration projects.. Journal of Environmental Management, 2014, 137, pp.10.1016/j.jenvman.2014.02.010. &#x27E8;10.1016/j.jenvman.2014.02.010&#x27E9;. &#x27E8;hal-01074852&#x27E9; 2014 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor, Nicolas Lamouroux, Jean-Michel Olivier. Comparing distribution models for small samples of overdispersed counts of freshwater fish. Acta Oecologica, 2011, 37 (3), pp.170-178. &#x27E8;10.1016/j.actao.2011.01.010&#x27E9;. &#x27E8;halsde-00622926&#x27E9; 2011 Article dans une revue https://data.archives-ouvertes.fr/structure/182258
E. Parrot, Hervé Piégay, Lise Vaudor, Guillaume Fantino, Michal Tal. Analyse de l’évolution géométrique du corridor de Genève à mer. Action 1. [Rapport de recherche] CNRS UMR 5600 - EVS; CNRS UMR 7330 - CEREGE. 2014. &#x27E8;hal-03446806&#x27E9; 2014 Rapport https://data.archives-ouvertes.fr/structure/145345
Hervé Piégay, Fanny Arnaud, Naudet Grégoire, H. Capra, Spitoni Marie, et al.. Caractérisation physique et thermique des habitats aquatiques de l’Ain. [Rapport de recherche] EVS - UMR 5600; IRSTEA; Ecole des Mines de Saint Etienne; Laboratoire de Géologie de Lyon. 2016, 66 p. &#x27E8;hal-01313825&#x27E9; 2016 Rapport https://data.archives-ouvertes.fr/structure/145345
Thomas Buhler, Emeline Comby, Lise Vaudor, Thilo von Pape. Beyond ‘good’ and ‘bad’ cyclists. On compensation effects between risk taking, safety equipment and secondary tasks. Journal of Transport and Health, 2021, 22, pp.101131. &#x27E8;10.1016/j.jth.2021.101131&#x27E9;. &#x27E8;hal-03283869&#x27E9; 2021 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Spitoni Marie, Hervé Piégay, Lise Vaudor. Assessment of dam impact on longitudinal sequences of in-stream habitats. International Conference Towards the best practice of river restoration and maintenance, Sep 2016, Krakow, Poland. &#x27E8;halshs-01619133&#x27E9; 2016 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Jérémie Riquier, Hervé Piégay, Lise Vaudor. Comparative analysis of hydromorphological conditions in unrestored and restored side channels: feedbacks for management purposes (Rhône, France). I.S. Rivers, Jun 2018, Lyon, France. &#x27E8;halshs-01818654&#x27E9; 2018 Poster de conférence https://data.archives-ouvertes.fr/structure/145345
Thomas Depret, Hervé Piégay, Lise Vaudor, Mathieu Cassel, Brice Noirot, et al.. Mesures et modélisations du fonctionnement hydrosédimentaire du secteur de Bourg-lès-Valence. OSR4 | Action I.3. [Rapport de recherche] CNRS; ENS de Lyon; INRAE. 2018. &#x27E8;hal-03748503&#x27E9; 2018 Rapport https://data.archives-ouvertes.fr/structure/145345
Matthieu Adam, Marylise Cottet, Sylvie Morardet, Lise Vaudor, Laure Coussout, et al.. Pedalando ao longo de um rio: novo acesso, novos valores?. Valua Terra: construir o valor dos ambientes. Olhares cruzados brasileiros e franceses, Éditions deux-cent-cinq, pp.233-251, 2022, https://doi.org/10.11606/9786586810424. &#x27E8;hal-03913201&#x27E9; 2022 Chapitre d’ouvrage https://data.archives-ouvertes.fr/structure/145345
Zhi Zhang, Hossein Ghaffarian, Bruce Macvicar, Lise Vaudor, Aurélie Antonio, et al.. Video monitoring of in-channel wood: from flux characterization and prediction to recommendations to equip stations. 2020. &#x27E8;hal-03027976&#x27E9; 2020 Pré-publication, Document de travail https://data.archives-ouvertes.fr/structure/458855
V. Benacchio, Hervé Piégay, Thomas Buffin-Belanger, Lise Vaudor, K. Michel. Automatioc imagery analysis to monitor wood flux in rivers (Rhône River, France). Third International Conference on WOOD IN WORLD RIVERS 2015, Jul 2015, Padoue, Italy. Third International Conference on WOOD IN WORLD RIVERS 2015. &#x27E8;halshs-01342273&#x27E9; 2015 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
Jérémie Riquier, Hervé Piégay, Nicolas Lamouroux, Lise Vaudor. Are restored side channels sustainable aquatic habitat features? Predicting the potential persistence of side channels as aquatic habitats based on their fine sedimentation dynamics. Geomorphology, 2017, 295, pp.507-528. &#x27E8;10.1016/j.geomorph.2017.08.001&#x27E9;. &#x27E8;hal-01575564&#x27E9; 2017 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Pierre Lemaire, Hervé Piégay, Bruce Macvicar, Lise Vaudor, Christine Mouquet-Noppe, et al.. An automatic video monitoring system for estimating driftwood discharge in large rivers. Third International Conference on WOOD WORLD RIVERS 3, Jul 2015, Padova, Italy. &#x27E8;halshs-01361639&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Bastien Bonef, Lionel Gérard, Jean-Luc Rouvière, Adeline Grenier, Pierre-Henri Jouneau, et al.. Atomic arrangement at ZnTe/CdSe interfaces determined by high resolution scanning transmission electron microscopy and atom probe tomography. Applied Physics Letters, 2015, 106 (5), pp.051904. &#x27E8;10.1063/1.4907648&#x27E9;. &#x27E8;hal-01132475&#x27E9; 2015 Article dans une revue https://data.archives-ouvertes.fr/structure/6054
Baptiste Marteau, Hervé Piégay, André Chandesris, Kristell Michel, Lise Vaudor. Riparian shading mitigates warming but cannot revert thermal alteration by impoundments in lowland rivers. Earth Surface Processes and Landforms, 2022, &#x27E8;10.1002/esp.5372&#x27E9;. &#x27E8;hal-03673524&#x27E9; 2022 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Aurélie Antonio, Flora Branger, Lucas Chirol, Chloé Le Bescond, et al.. Comment l’information et le savoir-faire produits par l’OSR sont-ils diffusés ? Valorisation, web SIG et base de données de l’OSR. Journée de restitution de l’OSR4, Jan 2018, Lyon, France. &#x27E8;hal-01892723&#x27E9; 2018 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Daniel Vázquez-Tarrío, Mathieu Cassel, Hervé Piégay, Thomas Depret, Fanny Arnaud, et al.. Suivi de l’effet morphologique du démantèlement des marges : validation des estimations de charriage par des observations in situ. [Rapport de recherche] CNRS UMR 5600 - EVS; CNR. 2021. &#x27E8;hal-03291004&#x27E9; 2021 Rapport https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Hervé Piégay, Bultingaire Ludovic, Lise Vaudor, Guillaume Fantino, et al.. Test de solutions RFID pour le traçage de sédiments et bois flottés en rivière.. [Rapport de recherche] EVS - UMR 5600. 2014, 34 p. &#x27E8;hal-01313800&#x27E9; 2014 Rapport https://data.archives-ouvertes.fr/structure/145345
V. Benacchio, Hervé Piégay, Thomas Buffin-Belanger, Lise Vaudor, K. Michel. In channel wood raft and ice cover monitoring using automatic processing ground imagery. Ecohydrology, 2015, Lyon, France. &#x27E8;halshs-01361790&#x27E9; 2015 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Fanny Arnaud, Hervé Piégay, Ludovic Bultingaire, Lise Vaudor, K. Michel, et al.. Suivi géomorphologique de la recharge sédimentaire expérimentale sur le Vieux Rhin. Synthèse des états 0 à 4 et préconisations de suivi. Séminaire de restitution du groupe de travail "Transport solide et géomorphologie fluviale", EDF, Dec 2013, Lyon, France. &#x27E8;halshs-01347719&#x27E9; 2013 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Clément Roux, Adrien Alber, Mélanie Bertrand, Lise Vaudor, Hervé Piégay. ``Fluvial Corridor’’: A new ArcGIS toolbox package for multiscale riverscape exploration. Geomorphology, 2015, 242 (SI), pp.29-37. &#x27E8;10.1016/j.geomorph.2014.04.018&#x27E9;. &#x27E8;hal-01223358&#x27E9; 2015 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Anne-Lise Boyer, Lise Vaudor, Yves-François Le Lay, Pascal Marty. Text mining et lexicométrie pour caractériser le discours environnemental sur les consommations urbaines de l’eau : analyse d’une stratégie de communication sur Twitter. Quatorzieme Rencontre de Theo Quant, Université de Franche-Comté, Feb 2019, Besançon, France. &#x27E8;hal-02025332&#x27E9; 2019 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Severin Hohensinner, Gregory Egger, Susanne Muhar, Lise Vaudor, Hervé Piégay. What remains today of pre‐industrial Alpine rivers? Census of historical and current channel patterns in the Alps. River Research and Applications, 2020, &#x27E8;10.1002/rra.3751&#x27E9;. &#x27E8;hal-03086848&#x27E9; 2020 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
E. Parrot, Hervé Piégay, Michal Tal, Lise Vaudor, L. Hammou, et al.. Caractérisation longitudinale des formes fluviales du Rhône : de l’étude bathymétrique à l’analyse de la granulométrie. Journée de restitution scientifique de l’observatoire des sédiments du Rhône, Oct 2012, Lyon, France. Journée de restitution scientifique de l’observatoire des sédiments du Rhône. &#x27E8;halshs-01341601&#x27E9; 2012 Poster de conférence https://data.archives-ouvertes.fr/structure/458855
Spitoni Marie, Hervé Piégay, Samuel Dunesme, Lise Vaudor. Can local-scale longitudinal variability of low flow width be a proxy of meso-habitat diversity?. 5th Biennal Symposium of the International Society for River Science, Nov 2017, Hamilton, New Zealand. &#x27E8;hal-02024573&#x27E9; 2017 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Marylise Cottet, Sylvie Morardet, Matthieu Adam, Stéphanie Vukelic, Anne-Laure Collard, et al.. ViaRhôna : la valorisation du patrimoine rhodanien à l’épreuve des territoires, des acteurs et des usages, rapport final du projet RhonaVél’eau. [Rapport de recherche] UMR Environnement Ville Société (CNRS); UMR G-EAU Gestion Acteus Usages (INRAE); Université de Lyon; Plan Rhône; Agence de l’eau RMC; EDF; FNADT. 2019. &#x27E8;halshs-03353137&#x27E9; 2019 Rapport https://data.archives-ouvertes.fr/structure/145345
Lise Vaudor. Estimation du paramétre de distribution de la distribution binomiale négative: A priori, effort d’échantillonnage, et information. 42èmes Journées de Statistique, 2010, Marseille, France, France. &#x27E8;inria-00494849&#x27E9; 2010 Communication dans un congrès https://data.archives-ouvertes.fr/structure/300005
Marylise Cottet, Lise Vaudor, Tronchère Hervé, Dad Roux-Michollet, Marie Augendre, et al.. Mapping gaze to gain insight into landscape valuations: the contribution of eye-tracking methodology. ISPM Conference, Jun 2019, Espoo, Finland. &#x27E8;hal-02429314&#x27E9; 2019 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345
Jérémie Riquier, Hervé Piégay, Nicolas Lamouroux, Lise Vaudor. Pertinence et pérennité de la restauration de chenaux latéraux : modèles issus de 15 ans de suivi sur le Rhône. La Houille Blanche - Revue internationale de l’eau, 2019, 2 (2), p. 101-108. &#x27E8;10.1051/lhb/2019020&#x27E9;. &#x27E8;hal-02042601&#x27E9; 2019 Article dans une revue https://data.archives-ouvertes.fr/structure/145345
Bertrand Morandi, Hervé Piégay, Nicolas Lamouroux, Lise Vaudor, A. Todter, et al.. L’évaluation des projets de restauration écologique de cours d’eau : Quels retours d’expériences pour quelles stratégies à venir ?. Journées Inter-ZA, Jul 2014, Paris, France. &#x27E8;halshs-01358323&#x27E9; 2014 Communication dans un congrès https://data.archives-ouvertes.fr/structure/145345

Préfixes usuels

Le package glitter fournit une liste de préfixes usuels pour alléger l’écriture de la requête…

usual_prefixes
type name url
wikidata wd http://www.wikidata.org/entity/
wikidata wdt http://www.wikidata.org/prop/direct/
wikidata ps http://www.wikidata.org/prop/statement/
wikidata psv http://www.wikidata.org/prop/statement/value/
wikidata pq http://www.wikidata.org/prop/qualifier/
wikidata p http://www.wikidata.org/prop/
wikidata wikibase http://wikiba.se/ontology#
dbpedia dbo http://dbpedia.org/ontology/
generic foaf http://xmlns.com/foaf/0.1/
generic rdfs http://www.w3.org/2000/01/rdf-schema#
generic bio http://vocab.org/bio/0.1/
generic dcterms http://purl.org/dc/terms/
generic xsd http://www.w3.org/2001/XMLSchema#
generic isni http://isni.org/ontology#
generic rdarelationships http://rdvocab.info/RDARelationshipsWEMI/
generic owl http://www.w3.org/2002/07/owl#
generic rdf http://www.w3.org/1999/02/22-rdf-syntax-ns#
generic skos http://www.w3.org/2004/02/skos/core#
generic viaf http://viaf.org/viaf/
generic ore http://www.openarchives.org/ore/terms/
generic geo http://www.w3.org/2003/01/geo/wgs84_pos#
generic sioc http://rdfs.org/sioc/ns#
dataBNF bnf-onto http://data.bnf.fr/ontology/bnf-onto/
hal hal http://data.archives-ouvertes.fr/schema/
hal haldoctype https://data.archives-ouvertes.fr/doctype/
hal haldoc https://data.archives-ouvertes.fr/document/

Généralisation: endpoints “usuels”

… et il fournit une liste d’endpoints usuels:

usual_endpoints
name url label_property
wikidata https://query.wikidata.org/sparql rdfs:label
dbpedia https://dbpedia.org/sparql rdfs:label
databnf https://data.bnf.fr/sparql rdfs:label
isidore https://isidore.science/sparql rdfs:label
hal http://sparql.archives-ouvertes.fr/sparql skos:prefLabel

Utiliser les LOD pour recueillir et compléter des données

Exemples pratiques d’utilisation:

  • 🌻 données botaniques ➡️ associer une photo et un nom vernaculaire à un nom d’espèce en latin
  • 📜 corpus de communiqués de presse du Ministère de l’Ecologie ➡️ récupérer le nom du ministre, avec les dates de début et de fin de son mandat.
  • 🏙️ lien entre grandes villes et plaines alluviales ➡️ récupérer les populations des grandes villes et leurs coordonnées, associer à une rivière
  • 🌍 carte du monde basée sur un shapefile avec des codes pays ➡️ récupérer les noms de pays, le nom et les coordonnées de leur capitales

➡️ Richesse thématique pour (par exemple) la construction de jeux de données pédagogiques

Et maintenant?

Chantier fini: on remballe!

📣 Retours utilisateurs bienvenus

Package installable et modifiable ici https://github.com/lvaudor/glitter.

📄 https://lvaudor.github.io/glitter/

🧠 Cas d’usages: à vous de jouer!

🙏 Merci pour votre attention!

ANNEXES

Sequins

https://github.com/lvaudor/sequins

Projet: Objectifs